home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / domacnost a kancelar / joomla / Joomla_1.5.4-Stable-Full_Package.exe / libraries / openid / consumer.php < prev    next >
PHP Script  |  2008-07-06  |  349b  |  16 lines

  1. <?php
  2. $path_extra = dirname(__FILE__);
  3. $path = ini_get('include_path');
  4. $path = $path_extra;
  5. ini_set('include_path', $path);
  6. /**
  7.  * Require the OpenID consumer code.
  8.  */
  9. require_once "Auth/OpenID/Consumer.php";
  10. /**
  11.  * Require the "file store" module, which we'll need to store OpenID
  12.  * information.
  13.  */
  14. require_once "Auth/OpenID/FileStore.php";
  15. ?>
  16.